home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / CAD / PKEY11_1.ARJ / BN.LSP < prev    next >
Text File  |  1992-03-14  |  409b  |  14 lines

  1. ;Add block name by picking block
  2. ;
  3. ;                     ********Patrick J. McKee, author********
  4. ;                       ****Copyright 1992, Power Key tm****
  5. ;
  6. ;
  7. (defun C:bn()
  8. (setq pt(cadr(entsel"\nSelect Block:")))
  9. (setq e1(ssget pt)) 
  10. (setq e2 (entget (ssname e1 0)))
  11. (setq blname (cdr(assoc 2 e2)))
  12. (setq pt1 (getpoint"\nSelect point for block title:"))
  13. (command "text" "c" pt1 "" blname))
  14.